Heroku Scheduler
custom clock processとの使い分け
Apps that have very basic scheduling needs such as executing a task on a very coarse-grained interval (daily, hourly or every 10 minutes) can use the Scheduler add-on. It is a free tool that suffices for simple recurring jobs.
However, for applications that demand the ability to define a much more specific execution interval (three times a day, every two hours or even every 5 seconds) it is necessary to implement a custom clock process to schedule jobs.
価格
無料
使ってみる
追加
heroku addons:create scheduler:standard
管理画面に飛ぶ
heroku addons:open scheduler
ブラウザで管理画面が開くので、実行したいコマンドを入力する
one-off dynoでartisanコマンドを実行するならheroku run php artisan listなのと同様に、project rootで実行される
つまり、管理画面でphp artisan listのようなコマンドを書いておけば良い